home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c-part2 / 10166 < prev    next >
Encoding:
Internet Message Format  |  1996-08-05  |  990 b 

  1. Path: fohnix.metronet.com!not-for-mail
  2. From: milam@fohnix.metronet.com (Stan Milam)
  3. Newsgroups: comp.lang.c
  4. Subject: Re: Question on C/370
  5. Date: 15 Mar 1996 15:29:23 -0600
  6. Organization: Texas Metronet, Inc  (login info (214/488-2590 - 817/571-0400))
  7. Message-ID: <4icnfj$4hc@fohnix.metronet.com>
  8. References: <4he39r$sh0@mtinsc01-mgt.ops.worldnet.att.net>
  9. NNTP-Posting-Host: fohnix.metronet.com
  10. X-Newsreader: TIN [version 1.2 PL2]
  11.  
  12. Arn Trembley (arnold.trembley@worldnet.att.net) wrote:
  13. : Does anyone know how to generate the square brackets "[" "]" used for 
  14. : array references on an IBM 3270 terminal for the mainframe C/370 
  15. : compiler?  Do you have to use a trigraph?
  16.  
  17. : The characters should exist in the EBCDIC character set, but I can't seem 
  18. : to generate them on my terminal.
  19.  
  20. : Thanks in advance.
  21.  
  22. Why not consider trigraphs?  They were designed for such purposes.  For example
  23.  
  24. array[index]   would be array??(index??) using trigraphs.  And it is portable
  25. too.
  26.  
  27. Rgrds,
  28. Stan Milam
  29.  
  30.